home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / gnu / nethack.lha / nethack-3.1 / include / emin.h < prev    next >
C/C++ Source or Header  |  1993-01-17  |  345b  |  17 lines

  1. /*    SCCS Id: @(#)emin.h    3.1    90/15/12    */
  2. /* Copyright (c) David Cohrs, 1990.                  */
  3. /* NetHack may be freely redistributed.  See license for details. */
  4.  
  5. #ifndef EMIN_H
  6. #define EMIN_H
  7.  
  8. #include "dungeon.h"
  9.  
  10. struct emin {
  11.     aligntyp    min_align;    /* alignment of minion */
  12. };
  13.  
  14. #define EMIN(mon)    ((struct emin *)&(mon)->mextra[0])
  15.  
  16. #endif /* EMIN_H */
  17.